home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Business Shareware
/
Business Shareware.iso
/
start
/
edu
/
quiz120
/
quiz2.bat
< prev
next >
Wrap
DOS Batch File
|
1993-05-12
|
825b
|
20 lines
echo off
cls
echo This is an example of using a batch file (.BAT) to start
echo Create A Quiz (QUIZ.EXE) and instruct the program to EXIT
echo AUTOMATICALLY after five (5) questions have been attempted.
echo You will NOT be able to exit the program UNTIL 5 questions
echo have been attempted. Any attempt to exit the program early
echo will fail.
echo.
echo The command line instruction is: QUIZ STOPAT=5 [ENTER]
echo.
echo Teachers: This batch file method is one way you can make
echo sure that your students attempt a specific number of questions
echo before they can exit the program. You can mix the STOPAT=
echo parameter with other Create A Quiz parameter codes. See other
echo .BAT files on this disk or .DOC file for additional options.
echo.
pause
QUIZ STOPAT=5